home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / Squeaky.swf / scripts / frame_280 / PlaceObject2_183_3 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Text File  |  2005-08-04  |  366 b   |  16 lines

  1. onClipEvent(enterFrame){
  2.    this._y = _root.ufo1._y - 12;
  3.    this._x = _root.ufo1._x - 35;
  4.    if(_root.hero.hitTest(this))
  5.    {
  6.       if(_root.ufo1._y > 283.4 and _root.hero._y <= 301.9)
  7.       {
  8.          _root.hero._y -= 1;
  9.       }
  10.    }
  11.    if(_root.hero.hitTest(this) and _root.ufo1._currentframe == 2)
  12.    {
  13.       _root.hero._x = this._x + 35;
  14.    }
  15. }
  16.